Append a varying string to the current record of the specified unit
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| integer, | intent(in) | :: | unit | |||
| type(varying_string), | intent(in) | :: | string | |||
| integer, | intent(out), | optional | :: | iostat |
subroutine put_unit_VS (unit, string, iostat) integer, intent(in) :: unit type(varying_string), intent(in) :: string integer, intent(out), optional :: iostat call put(unit, char(string), iostat) ! Finish return end subroutine put_unit_VS